home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 3 / Windows 6-Pak (InfoMagic) (Disc 3) (1999).ISO / Misc-Sound-Tools / metronome.zip / Metronome.exe / 0 / RCDATA / TFORM1 / TFORM1.txt
Text File  |  1998-11-18  |  3KB  |  158 lines

  1. object Form1: TForm1
  2.   Left = 294
  3.   Top = 216
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   BorderStyle = bsSingle
  8.   Caption = 'Metronome'
  9.   ClientHeight = 138
  10.   ClientWidth = 253
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object SpeedButton1: TSpeedButton
  21.     Left = 8
  22.     Top = 92
  23.     Width = 49
  24.     Height = 17
  25.     Caption = '&Options'
  26.     OnClick = SpeedButton1Click
  27.   end
  28.   object Label4: TLabel
  29.     Left = 8
  30.     Top = 8
  31.     Width = 23
  32.     Height = 13
  33.     Caption = 'BPM'
  34.   end
  35.   object Label5: TLabel
  36.     Left = 8
  37.     Top = 48
  38.     Width = 31
  39.     Height = 13
  40.     Caption = 'Sound'
  41.   end
  42.   object SpeedButton2: TSpeedButton
  43.     Left = 8
  44.     Top = 111
  45.     Width = 49
  46.     Height = 17
  47.     Caption = '&About'
  48.     OnClick = SpeedButton2Click
  49.   end
  50.   object Edit1: TEdit
  51.     Left = 8
  52.     Top = 24
  53.     Width = 81
  54.     Height = 21
  55.     TabOrder = 0
  56.     Text = '60'
  57.     OnKeyPress = Edit1KeyPress
  58.   end
  59.   object UpDown1: TUpDown
  60.     Left = 89
  61.     Top = 24
  62.     Width = 12
  63.     Height = 21
  64.     Associate = Edit1
  65.     Min = 1
  66.     Max = 600
  67.     Position = 60
  68.     TabOrder = 1
  69.     Wrap = False
  70.     OnChanging = UpDown1Changing
  71.   end
  72.   object BitBtn1: TBitBtn
  73.     Left = 115
  74.     Top = 32
  75.     Width = 121
  76.     Height = 49
  77.     Caption = '&Play'
  78.     TabOrder = 2
  79.     OnClick = BitBtn1Click
  80.   end
  81.   object ComboBox1: TComboBox
  82.     Left = 8
  83.     Top = 64
  84.     Width = 97
  85.     Height = 21
  86.     Style = csDropDownList
  87.     ItemHeight = 13
  88.     TabOrder = 3
  89.     OnChange = ComboBox1Change
  90.     OnDropDown = ComboBox1DropDown
  91.   end
  92.   object LightCheck1: TLightCheck
  93.     Left = 72
  94.     Top = 100
  95.     Width = 17
  96.     Height = 17
  97.     Shape = tsCircle
  98.     Checked = True
  99.     OffColor = clInactiveCaption
  100.     TabOrder = 4
  101.   end
  102.   object Panel1: TPanel
  103.     Left = 114
  104.     Top = 103
  105.     Width = 122
  106.     Height = 25
  107.     BevelInner = bvLowered
  108.     TabOrder = 5
  109.     object Label3: TLabel
  110.       Left = 4
  111.       Top = 4
  112.       Width = 53
  113.       Height = 13
  114.       Caption = 'Calculated:'
  115.     end
  116.     object Label2: TLabel
  117.       Left = 60
  118.       Top = 4
  119.       Width = 29
  120.       Height = 13
  121.       Caption = '? bpm'
  122.     end
  123.   end
  124.   object SuperTimer1: TSuperTimer
  125.     OnTimer = SuperTimer1Timer
  126.     Left = 112
  127.   end
  128.   object SuperTimer2: TSuperTimer
  129.     Interval = 60
  130.     OnTimer = SuperTimer2Timer
  131.     Left = 144
  132.   end
  133.   object PopupMenu1: TPopupMenu
  134.     Left = 176
  135.     object CalculateBMP1: TMenuItem
  136.       Caption = '&Calculate BPM'
  137.       Checked = True
  138.       OnClick = CalculateBMP1Click
  139.     end
  140.     object N1: TMenuItem
  141.       Caption = '-'
  142.     end
  143.     object Onebeat1: TMenuItem
  144.       Caption = '&One beat'
  145.       GroupIndex = 1
  146.       RadioItem = True
  147.       OnClick = Onebeat1Click
  148.     end
  149.     object Averageof51: TMenuItem
  150.       Caption = '&Average of 5 beats'
  151.       Checked = True
  152.       GroupIndex = 1
  153.       RadioItem = True
  154.       OnClick = Averageof51Click
  155.     end
  156.   end
  157. end
  158.